* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;  
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
  max-width: 100vw;
}

body {
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-y: scroll;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}
/* ===========================
   Navigation Bar
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-links a:not(.glass-btn)::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00f7ff;
  transition: width 0.3s ease;
}

.nav-links a:not(.glass-btn):hover::after,
.nav-links a:not(.glass-btn).active::after {
  width: 100%;
}

.nav-links a:not(.glass-btn):hover {
  color: #00f7ff;
}


.glass-btn {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  font-weight: bold;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.glass-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #00f7ff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: #00ffff;
  text-decoration: none;
  padding: 0px;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 255, 255, 0);
  z-index: 100;
  min-width: 220px;
}

.dropdown-menu a {
  color: #00ffff;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(0, 255, 255, 0);
  color: #ffffff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.glass-btn {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 95px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  font-weight: bold;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.glass-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #00f7ff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .glass-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}


.page-heading-section {
  width: 100%;
  margin: 0; /* Remove any default space */
  padding: 0; /* Remove left/right padding */
  margin-top: 0; /* Remove space between navbar and heading */
  text-align: center;
}

.page-heading-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem 40px; /* Top 60px, bottom 40px, side padding */
}

.page-heading-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f7ff, #ffffff, #00f7ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  animation: shimmer 3s infinite linear;
  margin: 0 0 20px 0; /* Remove top margin */
}

.page-heading-content p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

@keyframes shimmer {
  0% {
    background-position: -300% 0;
  }
  100% {
    background-position: 300% 0;
  }
}


/* Heading without shimmer (Used for "What Sets Us Apart") */
.partner-heading {
  font-size: 38px;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 15px;
  animation: none;
    margin-top: 0;
  background: none;
  text-align: center;
  -webkit-text-fill-color: initial;
}

/* Paragraph under What Sets Us Apart */
.partner-subtext {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  text-align: center;
  color: #e0e0e0;
}

/* Container for the two glass boxes */
.square-sections {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  flex-wrap: wrap;
}

/* Individual glass box */
.square-tab {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  flex: 1;
  min-width: 500px;
  height: auto;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  transition: all 0.35s ease;
}

.square-tab:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 12px 30px rgba(0, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.square-tab p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0fefe;
  text-align: left;
}

/* UL List Styling */
.tab-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  text-align: left;
  width: 100%;
}

.tab-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #e0fefe;
  font-size: 15px;
  line-height: 1.6;
}

.tab-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00ffff;
  font-weight: bold;
  font-size: 14px;
}

.glass-footer {
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px 20px;
  color: #e0f7fa;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.footer-link {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 4px;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.copyright {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}